#wrapper {

	position:fixed;

	top:0;

    bottom:0;

    left:0;

	width:100%;

	overflow:hidden;

}



#scroller {

    position: relative;

    /*-webkit-touch-callout:none;*/

    -webkit-tap-highlight-color: rgba(0,0,0,0);

    width: 100%;

    padding: 0;

    z-index: 1;

    -webkit-tap-highlight-color: rgba(0,0,0,0);



    /*webkit-transform: translateZ(0);

    moz-transform: translateZ(0);

    ms-transform: translateZ(0);

    -o-transform: translateZ(0);

    transform: translateZ(0);

    -webkit-touch-callout: none;

    -webkit-user-select: none;

    -moz-user-select: none;

    -ms-user-select: none;

    user-select: none;

    -webkit-text-size-adjust: none;

    -moz-text-size-adjust: none;

    -ms-text-size-adjust: none;

    -o-text-size-adjust: none;

    text-size-adjust: none;*/

}



@-webkit-keyframes loading {

    from { -webkit-transform:rotate(0deg) translateZ(0); }

	to { -webkit-transform:rotate(360deg) translateZ(0); }

}

/*------------- E 默认必须样式  -------------*/		

		







/*------------- S 以下css主要是仿IOS滚动条样式(可选样式)  -------------*/		

/**

 * Horizontal Scrollbar

 */

.myScrollbarH {

	position:absolute;

	z-index:100;

	height:7px;

	bottom:1px;

	left:2px;

	right:7px

}



.myScrollbarH > div {

	height:100%;

}



/**

 * Vertical Scrollbar

 */

.myScrollbarV {

	position:absolute;

	z-index:100;

	width:7px;bottom:7px;top:2px;right:1px

}



.myScrollbarV > div {

	width:100%;

}



/**

 * Both Scrollbars

 */

.myScrollbarH > div,

.myScrollbarV > div {

	position:absolute;

	z-index:100;



	/* The following is probably what you want to customize */

	-webkit-box-sizing:border-box;

	-moz-box-sizing:border-box;

	-o-box-sizing:border-box;

	box-sizing:border-box;

	

	border-width:3px;

	-webkit-border-image:url(../images/scrollbar.png) 6 6 6 6;

	-moz-border-image:url(../images/scrollbar.png) 6 6 6 6;

	-o-border-image:url(../images/scrollbar.png) 6 6 6 6;

	border-image:url(../images/scrollbar.png) 6 6 6 6;

}

/*------------- E 以上css主要是仿IOS滚动条样式  -------------*/



